翻訳と辞書
Words near each other
・ Parallel Lives (disambiguation)
・ Parallel Lives (film)
・ Parallel manipulator
・ Parallel mesh generation
・ Parallel metaheuristic
・ Parallel Minds
・ Parallel motion
・ Parallel novel
・ Parallel Ocean Program
・ Parallel optical interface
・ Parallel parametric test
・ Parallel parking
・ Parallel parking problem
・ Parallel Parkway
・ Parallel passage
Parallel Patterns Library
・ Parallel Peripheral Interface
・ Parallel Play
・ Parallel play
・ Parallel Play (book)
・ Parallel Play (EP)
・ Parallel Polis
・ Parallel port
・ Parallel postulate
・ Parallel processing
・ Parallel processing (DSP implementation)
・ Parallel processing (psychology)
・ Parallel Processing Letters
・ Parallel programming model
・ Parallel projection


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Parallel Patterns Library : ウィキペディア英語版
Parallel Patterns Library
The Parallel Patterns Library is a Microsoft library designed for use by native C++ developers that provides features for multicore programming.〔(【引用サイトリンク】 The Visual C++ Weekly )〕 It was first bundled with Visual Studio 2010. It resembles the C++ Standard Library in style and works well with the C++11 language feature, lambdas, also introduced with Visual Studio 2010.
For example, this sequential loop:
for (int x=0; x < width; ++x)

Can be made into a parallel loop by replacing the for with a parallel_for:
#include
// . . .
Concurrency::parallel_for (0, width, ()(int x)
);
This still requires the developer to know that the loop is parallelizable, but all the other work is done by the library.
MSDN〔(【引用サイトリンク】 Parallel Patterns Library (PPL) on MSDN ) 〕 describes the Parallel Patterns Library as an "imperative programming model that promotes scalability and ease-of-use for developing concurrent applications." It uses the Concurrency Runtime for scheduling and resource management and provides generic, type-safe algorithms and containers for use in parallel applications.
==References==


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Parallel Patterns Library」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.